home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1998 March / Macworld (1998-03) (Disk 1).dmg / Shareware World / Info / For Developers / GhostScript 5.10 / MacGS-510 / doc / use.txt < prev    next >
Text File  |  1997-09-30  |  50KB  |  1,248 lines

  1.    Copyright (C) 1989, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17.  
  18. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  19.  
  20. This file, use.txt, describes how to use the Ghostscript language
  21. interpreter.
  22.  
  23. For an overview of Ghostscript and a list of the documentation files, see
  24. README.  
  25.  
  26. ********
  27. ******** Installing Ghostscript
  28. ********
  29.  
  30. Please read the documentation file install.txt for information on installing
  31. Ghostscript.
  32.  
  33. ********
  34. ******** Unix shell scripts for Ghostscript
  35. ********
  36.  
  37. The Ghostscript distribution includes several Unix shell scripts for
  38. driving Ghostscript in different environments.  These are all
  39. user-contributed code: please contact the user identified in the file, not
  40. Aladdin Enterprises, if you have questions.
  41.  
  42. > pv.sh - preview a specified page of a dvi file in an X window.
  43.  
  44. > sysvlp.sh - System V 3.2 lp interface for parallel printer.
  45.  
  46. > pj-gs.sh - printing on an H-P PaintJet under HP-UX.
  47.  
  48. > unix-lpr.sh - queue filter for lpr under Unix.
  49. > lprsetup.sh - setup for unix-lpr.sh.
  50.  
  51. If one of these serves your needs, you may be able to skip most of
  52. the rest of this document.
  53.  
  54. ********
  55. ******** How to use Ghostscript ********
  56. ********
  57.  
  58. The command (that is, a shell command in environments other than MS Windows,
  59. or a 'Run' line in MS Windows) to invoke Ghostscript is:
  60.     gs <filename1> ... <filenameN>
  61. Normally the files are PostScript or EPS files, but depending on how
  62. Ghostscript was built, they may also be PDF files or MS-DOS EPSF files.  The
  63. interpreter will read in the files in sequence (using the method described
  64. under "File searching" below to find the files) and execute them.  After
  65. doing this, it reads further input from the primary input stream (normally
  66. the keyboard), consisting of PostScript language commands.  Each line
  67. (i.e. characters up to a <return>) is interpreted separately.  To exit from
  68. the interpreter, type quit<return>.  The interpreter also exits gracefully
  69. if it encounters end-of-file.  Typing the interrupt character, e.g.,
  70. control-C, is also safe.
  71.  
  72. The interpreter recognizes many switches described below, which may appear
  73. anywhere in the command line and apply to all files thereafter.
  74.  
  75. Many of the switches include an '=' followed by a parameter.  Because of a
  76. strange design decision in the Watcom C/C++ run-time library, you must use
  77. '#' rather than '=' with Ghostscript if Ghostscript was compiled with Watcom
  78. C/C++.  In particular, the MS-DOS executable included in the standard
  79. Ghostscript distribution (gs386.exe) was compiled this way.
  80.  
  81. You can get a brief help message by invoking Ghostscript with
  82.     gs -h
  83. or
  84.     gs -?
  85. This message also lists the available devices.  For a little more
  86. information about available devices, a one-line description of each device
  87. appears near the beginning of the file devs.mak.
  88.  
  89. Choosing the output device
  90. --------------------------
  91.  
  92. Ghostscript may be built with multiple output devices.  Ghostscript
  93. normally opens the first one and directs output to it.  To use device xyz
  94. as the initial output device, include the switch
  95.     -sDEVICE=xyz
  96. in the command line.  Note that this switch must precede the first .ps
  97. file, and only its first invocation has any effect.  For example, for
  98. printer output in a normal configuration that includes an Epson printer
  99. driver, you might use the shell command
  100.     gs -sDEVICE=epson myfile.ps
  101. instead of just
  102.     gs myfile.ps
  103. Alternatively, once you are inside Ghostscript, you can type
  104.     (epson) selectdevice
  105.     (myfile.ps) run
  106. All output then goes to the printer instead of the display until further
  107. notice.  You can switch devices at any time by using the selectdevice
  108. procedure, e.g.,
  109.     (vga) selectdevice
  110. or
  111.     (epson) selectdevice
  112. As yet a third alternative, you can define an environment variable
  113. GS_DEVICE as the desired default device name.  The order of precedence for
  114. these alternatives, highest to lowest, is:
  115.     selectdevice
  116.     (command line)
  117.     GS_DEVICE
  118.     (first device in build list)
  119.  
  120. To select the resolution on a printer, use the shell command
  121.     gs -sDEVICE=<device> -r<xres>x<yres>
  122. For example, on a 9-pin Epson-compatible printer, you can get the
  123. lowest-resolution (fastest) mode with
  124.     gs -sDEVICE=epson -r60x72
  125. and the highest-resolution mode with
  126.     gs -sDEVICE=epson -r240x72.
  127. On a 24-pin printer, the lowest resolution is
  128.     gs -sDEVICE=epson -r60x60
  129. and the highest-resolution 24-pin mode is
  130.     gs -sDEVICE=epson -r360x180
  131.  
  132. If you select a printer as the output device, Ghostscript also allows you
  133. to control where the device sends its output.  Normally, output goes
  134. directly to the printer (PRN) on MS-DOS systems, and to a scratch file on
  135. Unix or VMS systems.  To send the output to a series of files foo1.xyz,
  136. foo2.xyz, ..., use the switch
  137.     -sOutputFile=foo%d.xyz
  138. (For compatibility with older versions of Ghostscript, -sOUTPUTFILE=
  139. also works.)  The %d is a printf format specification; you can use
  140. other formats like %02d.  Each file will receive one page of output.
  141. Alternatively, to send the output to a single file foo.xyz, with all
  142. the pages concatenated, use the switch
  143.     -sOutputFile=foo.xyz
  144.  
  145. On Unix systems, you can send the output directly to a pipe.  For
  146. example, to pipe the output to the command `lpr' (which, on many Unix
  147. systems, is the command that spools output for a printer), use the
  148. switch
  149.     -sOutputFile=\|lpr
  150. You can also send output to stdout for piping with the switch
  151.     -sOutputFile=-
  152. In this case you must also use the -q switch, to prevent Ghostscript from
  153. writing messages to stdout.
  154.  
  155. File formats like PCX and PBM are also 'devices'.  When you select a file
  156. format as the 'device', you must also specify an output file, e.g.,
  157.     gs -sDEVICE=pcxmono -sOutputFile=xyz.pcx
  158.  
  159. To find out what devices are available, type
  160.     devicenames ==
  161. after starting up Ghostscript.  Alternatively you can use the -h or
  162. -? switch in the command line, as described above.
  163.  
  164. Choosing paper size
  165. -------------------
  166.  
  167. Ghostscript is normally configured to use U.S. letter paper as the default.
  168. To select a different default paper size, find the line in gs_init.ps that
  169. says
  170.  
  171.     % Optionally choose a default paper size other than U.S. letter.
  172.  
  173. The next line begins
  174.  
  175.     % (a4)
  176.  
  177. To select A4 as the default paper size, remove the % but do not change
  178. anything else.  To select a different default paper size, remove the % and
  179. replace the word a4 with the name of the desired paper size.  You can use
  180. any paper size listed in the table at the beginning of gs_statd.ps.
  181.  
  182. Alternatively, to select a different default paper size for a single
  183. invocation of Ghostscript, you can use the command line switch
  184.     -sPAPERSIZE=a_known_paper_size
  185. e.g.,
  186.     -sPAPERSIZE=a4
  187. or
  188.     -sPAPERSIZE=legal
  189.  
  190. Individual documents also can (and often do) specify a paper size, which
  191. will take precedence over the default one.  If you want to force a specific
  192. paper size, ignoring the paper size specified in the document, make that
  193. paper size the default (as just described), and also include
  194.     -dFIXEDMEDIA
  195. on the command line.
  196.  
  197. Finally, most (but not all) of Ghostscript's printer drivers can be
  198. configured at compile time to use A4 paper as the default by including
  199. -DA4 in the CFLAGS switches in the makefile.  See make.txt for more
  200. details.
  201.  
  202. File searching
  203. --------------
  204.  
  205. When looking for initialization files (gs_*.ps, pdf_*.ps), font files, the
  206. Fontmap file, and files named on the command line, Ghostscript first tests
  207. whether the file name specifies an explicit directory.  The test is as
  208. follows:
  209.  
  210.     - On Unix systems, Ghostscript tests whether the name begins with
  211.     '/', or with one or more '.'s followed by a '/'.
  212.  
  213.     - On MS-DOS or MS Windows systems, Ghostscript tests whether the
  214.     name has a ':' as its second character, or begins with '/' or
  215.     '\', or with one or more '.'s followed by a '/' or '\'.
  216.  
  217.     - On VMS systems, Ghostscript tests whether the name contains a
  218.     node, device, root, or directory specification.
  219.  
  220. If the file name does specify an explicit directory (the test succeeds),
  221. Ghostscript simply tries to open the file using the given name.  Otherwise,
  222. Ghostscript will try directories in the following order:
  223.  
  224.     - The current directory (unless disabled by the -P- switch);
  225.  
  226.     - The directory/ies specified by the -I switch(es) in the command
  227.       line (see below), if any;
  228.  
  229.     - The directory/ies specified by the GS_LIB environment variable,
  230.       if any;
  231.  
  232.     - The directory/ies specified by the GS_LIB_DEFAULT macro in the
  233.       Ghostscript makefile, if any.
  234.  
  235. Each of these (GS_LIB_DEFAULT, GS_LIB, and -I parameter) may be either a
  236. single directory, or a list of directories separated by a character
  237. appropriate for the operating system (':' on Unix systems, ';' on VMS
  238. systems, ';' on MS-DOS systems).  We think that trying the current directory
  239. first is a very bad idea -- it opens serious security loopholes and can lead
  240. to very confusing errors if one has more than one version of Ghostscript in
  241. one's environment -- but when we attempted to change it, users insisted that
  242. we change it back.  You can disable looking in the current directory first
  243. using the -P- switch described below.
  244.  
  245. Note that Ghostscript does not use this file searching algorithm for the
  246. 'run' or 'file' operators: for these operators, it simply opens the file
  247. with the given name.  To run a file using the searching algorithm, use
  248. 'runlibfile' instead of 'run'.
  249.  
  250. Resources
  251. ---------
  252.  
  253. Ghostscript uses a completely different rule for looking for files
  254. containing PostScript Level 2 "resources": per the Adobe documentation, it
  255. concatenates together:
  256.  
  257.     - The value of the system parameter GenericResourceDir
  258.     (initially "/Resource/");
  259.  
  260.     - The name of the resource category (e.g., ProcSet);
  261.  
  262.     - The value of the system parameter GenericResourcePathSep
  263.     (initially "/");
  264.  
  265.     - The name of the resource instance (e.g., CIDInit).
  266.  
  267. For looking up fonts, after exhausting the search method described in the
  268. next section, it concatenates together:
  269.  
  270.     - The value of the system parameter FontResourceDir
  271.     (initially "/Resource/Font/");
  272.  
  273.     - The name of the resource font (e.g., Times-Roman).
  274.  
  275. Note that even though the system parameters are named somethingDir, they are
  276. not just plain directory names: they have a "/" on the end, so that they can
  277. be concatenated with the category name or font name.
  278.  
  279. Font lookup
  280. -----------
  281.  
  282. Ghostscript has a slightly different rule for determining how to find the
  283. file containing a font with a given name.  This rule uses not only the
  284. search path defined by -I, GS_LIB, and GS_LIB_DEFAULT as described above,
  285. but an additional list of directories which is the value of the GS_FONTPATH
  286. environment variable (or the value provided with the -sFONTPATH= switch, if
  287. present).
  288.  
  289. When Ghostscript needs to find a font that isn't already loaded into memory,
  290. it starts by looking for Fontmap files in every directory on the search
  291. path: these files provide mappings between font names and file names.  (See
  292. the Fontmap file in the Ghostscript distribution for details.)  If it can't
  293. find a font in any Fontmap file in the search path (or in the list provided
  294. with the -sFONTMAP= switch, if present), it looks at the GS_FONTPATH
  295. environment variable (or the value provided with the -sFONTPATH= switch, if
  296. present), which is also a list of directories.  It goes to those
  297. directories, one by one, and looks for all files that appear to contain
  298. PostScript fonts; it then effectively adds all those files and fonts to its
  299. internal copy of the Fontmap (the catalog of fonts and the files that
  300. contain them).
  301.  
  302. To summarize, the differences between the search path (-I, GS_LIB,
  303. GS_LIB_DEFAULT) and the font path (-sFONTPATH=, GS_FONTPATH) are:
  304.  
  305.     Search path:
  306.  
  307.     - Consulted first.
  308.  
  309.     - Font name -> file name mapping given in Fontmap files;
  310.     aliases are possible, and there need not be any relation
  311.     between the font name in the Fontmap and the FontName in
  312.     the file.
  313.  
  314.     - Only fonts and files named in Fontmap are used.
  315.  
  316.     Font path:
  317.  
  318.     - Consulted only if search path doesn't provide the file.
  319.  
  320.     - Font name -> file name mapping is implicit -- the
  321.     FontName in the file is used.  Aliases are not possible.
  322.  
  323.     - Every Type 1 font file in each directory is available.
  324.  
  325. If you are using one of the following types of computer, you
  326. may wish to set GS_FONTPATH to the indicated value so that Ghostscript will
  327. automatically acquire all the installed Type 1 fonts:
  328.  
  329.     System type        GS_FONTPATH
  330.     -----------        -----------
  331.     DEC OSF/1        /usr/lib/X11/fonts/Type1Adobe
  332.     DEC Ultrix        /usr/lib/DPS/outline/decwin
  333.     HP-UX 9            /usr/lib/X11/fonts/type1.st/typefaces
  334.     IBM AIX            /usr/lpp/DPS/fonts/outlines
  335.       "            /usr/lpp/X11/lib/X11/fonts/Type1
  336.       "            /usr/lpp/X11/lib/X11/fonts/Type1/DPS
  337.     NeXT            /NextLibrary/Fonts/outline
  338.     SGI IRIX        /usr/lib/DPS/outline/base
  339.       "            /usr/lib/X11/fonts/Type1
  340.     Sun SunOS 4.x        /usr/openwin/lib/X11/fonts/Type1/outline
  341.       " (NeWSprint only)
  342.    newsprint_2.5/SUNWsteNP/reloc/$BASEDIR/NeWSprint/small_openwin/lib/fonts
  343.     Sun Solaris 2        /usr/openwin/lib/X11/fonts/Type1/outline
  344.     VMS            SYS$COMMON:[SYSFONT.XDPS.OUTLINE]
  345.  
  346. These paths may not be exactly right for your installation; if the
  347. indicated directory doesn't contain files whose names are familiar font
  348. names like Courier and Helvetica, you may wish to ask your system
  349. administrator where to find these fonts.
  350.  
  351. Adobe Acrobat comes with a set of 14 Type 1 fonts, typically in a directory
  352. called some_path_name_or_other/Acrobat3/Fonts.  There is no particular
  353. reason to use these instead of the corresponding fonts in the Ghostscript
  354. distribution, aside from saving about 1 Mb of disk space, but if you want to
  355. do this, see install.txt.
  356.  
  357. NOTE: On Solaris systems simply setting GS_FONTPATH may not work, because
  358. for some reason some versions of Ghostscript can't seem to find any of the
  359. Type1 fonts in /usr/openwin/lib/X11/fonts/Type1/outline.  It says: "15
  360. files, 15 scanned, 0 new fonts".  See Fontmap.Sol instead.
  361.  
  362. Temporary files
  363. ---------------
  364.  
  365. By default, Ghostscript creates temporary files named _temp_XX.XXX in the
  366. current directory on MS-DOS and VMS systems, gsXXXXXX in the current
  367. directory on OS/2 systems, and gs_XXXXX in the /tmp directory on Unix
  368. systems.  You can change the directory in which Ghostscript will create
  369. these files by setting the TEMP environment variable to the name of the
  370. directory.
  371.  
  372. Ghostscript currently doesn't do a very good job of deleting temporary
  373. files when it exits; you may have to delete them manually from time to
  374. time.
  375.  
  376. Environment variable summary
  377. ----------------------------
  378.  
  379. GS_DEVICE
  380.     Defines the default output device.  Described above.
  381.  
  382. GS_FONTPATH
  383.     Specifies a list of directories that should be scanned for fonts if
  384. a requested font can't be found anywhere on the search path.  Described
  385. above.
  386.  
  387. GS_LIB
  388.     Provides a search path for initialization files and fonts.
  389. Described above.
  390.  
  391. GS_OPTIONS
  392.     Defines a list of command line arguments to be processed before
  393. the ones actually specified on the command line.  For example, setting
  394. GS_DEVICE to xxx is equivalent to setting GS_OPTIONS to -sDEVICE=xxx.  The
  395. contents of GS_OPTIONS are not limited to switches; they may include
  396. actual file names or even @file arguments.
  397.  
  398. TEMP
  399.     Defines a directory name for temporary files.  Described above.
  400.  
  401. ********
  402. ******** Using Ghostscript and Ghostview with PDF files
  403. ********
  404.  
  405. Ghostscript is normally configured (except on 16-bit MS-DOS platforms) so
  406. that it can interpret both PostScript and PDF files (the latter are
  407. sometimes incorrectly called "Acrobat files").  It examines each file to
  408. determine automatically whether it is a PDF file or a PostScript file.  All
  409. the normal switches and procedures for interpreting PostScript files also
  410. apply to PDF files, with a few exceptions noted below.  In addition, there
  411. is a shell script / batch file
  412.  
  413.         pdf2ps input.pdf output.ps
  414.  
  415. that converts PDF to (Level 2) PostScript.
  416.  
  417. Switches not applicable to PDF files
  418. ------------------------------------
  419.  
  420. You cannot use the `-' switch to provide PDF input from stdin or a pipe.
  421. The PDF language, unlike the PostScript language, inherently requires random
  422. access to the file.
  423.  
  424. Added switches for PDF files
  425. ----------------------------
  426.  
  427.     -dFirstPage=pagenumber
  428.         Starts interpreting on the given page of the document.
  429.  
  430.     -dLastPage=pagenumber
  431.         Stops interpreting after the given page of the document.
  432.  
  433.     -sPSFile=filename
  434.         Writes the PostScript equivalent of the PDF input on the
  435.         given file.
  436.  
  437. Ghostview and PDF files
  438. -----------------------
  439.  
  440. Since Ghostview pipes PostScript files to Ghostscript, you cannot view PDF
  441. files with Ghostview just by saying
  442.         ghostview file.pdf
  443. Instead there are two options:
  444.  
  445.    1. Tanmoy Bhattacharya has written some patches for Ghostview 1.5
  446.    that allow it to read and display PDF files.  These are available
  447.    from:
  448.        ftp://gita.lanl.gov/people/tanmoy/hypertex/gv1.5gs3.33hack.tar.gz
  449.  
  450.    2. Start Ghostview as follows:
  451.           ghostview -arguments file.pdf quit.ps
  452.    This will allow you to display a PDF file, but you won't be able
  453.    to jump to particular pages.  Use Tanmoy's code if you want that
  454.    facility.
  455.  
  456. ********
  457. ******** Notes on specific platforms ********
  458. ********
  459.  
  460. VMS
  461. ---
  462.  
  463. On VMS systems, the last character of each "directory" name indicates what
  464. sort of entity the "directory" references.  If the "directory" name ends
  465. with a colon, it is taken as referring to a logical device, e.g.:
  466.     $ DEFINE GHOSTSCRIPT_DEVICE DUA1:[GHOSTSCRIPT_14]
  467.     $ DEFINE GS_LIB GHOSTSCRIPT_DEVICE:
  468. If the "directory" name ends with a closing square bracket, it is taken as
  469. referring to a real directory, e.g.:
  470.     $ DEFINE GS_LIB DUA1:[GHOSTSCRIPT]
  471.  
  472. In order to specify switches and file names when invoking the interpreter,
  473. define GS as a foreign command:
  474.     $ GS == "$disk:[directory]GS.EXE"
  475. where "disk" and "directory" specify the disk and directory where Ghostscript
  476. is located.  For instance,
  477.     $ GS == "$DUA1:[GHOSTSCRIPT]GS.EXE"
  478. To allow the interpreter to be run from any directory, define the logical
  479. GS_LIB which points to the Ghostscript directory
  480.     $ DEFINE GS_LIB disk:[directory]
  481. This allows Ghostscript to locate its initialization files stored in the
  482. Ghostscript directory -- see use.txt for further details.  Finally, to
  483. invoke the interpreter, merely type GS.  Although DCL normally converts
  484. unquoted parameters to upper case, C programs receive their parameters in
  485. lower case.  That is, the command
  486.     $ GS -Isys$login:
  487. passes the switch "-isys$login" to the interpreter.  To preserve the
  488. case of switches, enclose them in double quotes; e.g.,
  489.     $ GS "-Isys$login:"
  490.  
  491. If you are on an X Windows display (for which gs is built), you can do
  492.  
  493.     $ set display/create/node="domain-name"/transport=tcpip
  494.  
  495. For example,
  496.  
  497.     $ set display/create/node="doof.city.com"/transport=tcpip
  498.  
  499. and then run Ghostscript
  500.  
  501.     $ gs
  502.  
  503. If you write printer output to a file and then want to print the file
  504. later, use the "/PASSALL" qualifier to the PRINT command.
  505.  
  506. In order to get PDF files (or PostScript files that use the setfileposition
  507. operator) to work properly on VMS systems, you must ensure that they are
  508. "stream LF" type files.  (**NOTE**: This only applies if you are using DEC C
  509. to compile Ghostscript; there is no known way to get these files to work
  510. properly with the old VAX C compiler.)  If you transfer files by FTP, you
  511. probably need to do one of the following two things after the transfer:
  512.  
  513. 1. If FTP'd in text/ASCII mode then do:
  514.  
  515.      $ CONVERT/FDL=STREAMLF.FDL input-file output-file
  516.  
  517.    where the contents of the file STREAMLF.FDL are given below.
  518.  
  519. 2. Otherwise, if FTP'd in binary mode do
  520.  
  521.      $ SET FILE/ATTRIBUTE=(RFM:STMLF)
  522.  
  523. The contents of the STREAMLF.FDL file are shown between, and exclusive of, the
  524. dashed lines:
  525.  
  526. -------------------------------------------------
  527. FILE
  528.         ORGANIZATION            sequential
  529.  
  530. RECORD
  531.         BLOCK_SPAN              yes
  532.         CARRIAGE_CONTROL        carriage_return
  533.         FORMAT                  stream_lf
  534. -------------------------------------------------
  535.  
  536. MS-DOS
  537. ------
  538.  
  539. Ghostscript supports many SuperVGA displays directly, most of them with
  540. more than 16 colors.  The complete list is in the file devs.mak, which is
  541. part of the Ghostscript source code.  (If you got Ghostscript under the
  542. Aladdin Ghostscript Free Public License, the person or place from which you
  543. got it is also required to make the source code available to you; if you
  544. got it under the GNU License, see the GNU License for more information.)
  545.  
  546. Some applications, such as Microsoft Word, require a prologue in front of
  547. the PostScript files they output.  In the case of Word, this is one of the
  548. *.ini files included with the Word distribution.  Other applications may
  549. require other prologues.  These may be specified on the Ghostscript
  550. command line, e.g.,
  551.     gs prologue.ini myfile.ps
  552.  
  553. If you have a SuperVGA display that supports a 16-color mode with 800x600
  554. pixels, and you know the display mode number for this mode, you can select
  555. it by using the command line switches
  556.     -sDEVICE=svga16 -dDisplayMode=NNN
  557. where NNN is the display mode number in decimal.  The modes for some
  558. popular display chipsets are as follows:
  559.  
  560.     Acumos AVGA2, AVGA3                         88    (0x58)
  561.     Advance Logic AL2101                        43    (0x2B)
  562.     Ahead V5000                                 113    (0x71)
  563.     ATI VGAWONDER, Graphics Ultra etc.          84    (0x54)
  564.     Chips and Technologies                      106    (0x6A)
  565.     Cirrus Logic CL-GD 500/600                  100    (0x64)
  566.     Cirrus Logic GD 5422                        88    (0x58)
  567.     Compaq VGA                                  89    (0x59)
  568.     CTI                                         106    (0x6A)
  569.   * Genoa 5xxx, Sigma VGA                       41    (0x29)
  570.     Genoa 6xxx                                  106    (0x6A)
  571.     MXIC MX 68010                               85    (0x55)
  572.     NCR 77C22                                   88    (0x58)
  573.     OAK Technologies OTI-067, OTI-077, OTI037C  82    (0x52)
  574.     OAK Technologies OTI037C w/ NEL BIOS        91    (0x5B)
  575.   * Orchid Prodesigner                          41    (0x29)
  576.     Paradise                                    88    (0x58)
  577.     Poach                                       106    (0x6A)
  578.     Primus                                      42    (0x2A)
  579.     Realtek RT 3106                             31    (0x1F)
  580.     Tecmar                                      22    (0x16)
  581.     Trident 8900                                91    (0x5B)
  582.   * Tseng ET-3000, ET-4000                      41    (0x29)
  583.   * VEGA                                        41    (0x29)
  584.     Video 7 SVGA                                98    (0x62)
  585.     WD90C11                                     92    (0x5C)
  586.     Western Digital                             88    (0x58)
  587.  
  588. The ones marked * are the default (they all use the same value.)  If your
  589. card's chipset doesn't appear on this list, or if you try the value here
  590. and it doesn't work, please e-mail the chipset and correct display mode to
  591. ghost@aladdin.com for inclusion in future releases.
  592.  
  593. NOTE: The remainder of the MS-DOS section is currently not relevant, because
  594. the Borland compilers do not support 32-bit MS-DOS executables, and
  595. Ghostscript no longer supports the 16-bit MS-DOS environment.  We have
  596. retained this section on the off-chance that Borland will support 32-bit
  597. MS-DOS compilation at some future time.
  598.  
  599. If you are running Ghostscript on a MS-DOS machine with a display that is
  600. not EGA/VGA compatible, you must use the Borland compiler.  You must build
  601. Ghostscript with the BGI driver as the default, and you will need the
  602. appropriate .BGI file from the Borland Turbo C library.  (Ghostscript
  603. includes the EGA/VGA driver in the executable.)
  604.  
  605. If you are using the BGI driver, two additional environment variables
  606. become relevant:
  607.  
  608.     BGIPATH - defines the directory where Ghostscript will look for
  609. the appropriate BGI driver.  If BGIPATH is not defined, Ghostscript will
  610. look in the directory defined as BGIDIR in the makefile.  In either case,
  611. if no driver is found in the designated directory, Ghostscript will look
  612. in the current directory.
  613.  
  614.     BGIUSER - a string of the form nn.dname, where nn is a hexadecimal
  615. number giving a display mode and dname is the name of a file containing a
  616. user-supplied BGI driver.  If BGIUSER is defined and the BGI device is
  617. selected, Ghostscript will supply nn as the display mode and will obtain
  618. the driver from the file named dname.
  619.  
  620. X Windows
  621. ---------
  622.  
  623. Ghostscript looks for the following resources under the program name
  624. "ghostscript" and class name "Ghostscript":
  625.  
  626.     Name            Class            Default
  627.     ----            -----            -------
  628.     background        Background        white
  629.     foreground        Foreground        black
  630.     borderColor        BorderColor        black
  631.     borderWidth        BorderWidth        1
  632.     geometry        Geometry        NULL
  633.     xResolution        Resolution        **
  634.     yResolution        Resolution        **
  635.     useExternalFonts    UseExternalFonts    true
  636.     useScalableFonts    UseScalableFonts    true
  637.     logExternalFonts    LogExternalFonts    false
  638.     externalFontTolerance    ExternalFontTolerance    10.0
  639.     palette            Palette            Color
  640.     maxGrayRamp        MaxGrayRamp        128
  641.     maxRGBRamp        MaxRGBRamp        5
  642.         maxDynamicColors    MaxDynamicColors    256
  643.     useBackingPixmap    UseBackingPixmap    true
  644.     useXPutImage        UseXPutImage        true
  645.     useXSetTile        UseXSetTile        true
  646.     regularFonts        RegularFonts        see below
  647.     symbolFonts        SymbolFonts        see below
  648.     dingbatFonts        DingbatFonts        see below
  649.  
  650. ** Calculated from display metrics.
  651.  
  652.     Notes on Resources:
  653.  
  654.     Ghostscript doesn't look at the default system background and
  655.     foreground colors; if you want to change the background or
  656.     foreground color, you must set them explicitly for Ghostscript.
  657.     (This is a deliberate choice, so that PostScript documents will
  658.     display correctly -- with white = white and black = black --
  659.     by default, even if text windows use other colors.)
  660.  
  661.     The geometry resource only affects window placement.
  662.  
  663.     Resolution is given in pixels per inch.
  664.  
  665.     The font tolerance gives largest acceptable difference in
  666.     height of the screen font.  The tolerance is expressed as
  667.     a percentage of the height of the desired font.
  668.  
  669.     The palette resource can be used to restrict ghostscript to
  670.     using a grayscale or monochrome palette.
  671.  
  672.     The maxRGBRamp and maxGrayRamp control the maximum number of
  673.     colors that ghostscript allocates ahead of time for the dither
  674.     cube/ramp.  Ghostscript will never preallocate more than half
  675.     of the cells in a colormap.  maxDynamicColors controls the
  676.     maximum number of colors that Ghostscript will allocate
  677.     dynamically in the colormap.
  678.  
  679. The use... resources exist primarily to work around bugs in X servers.  In
  680. particular, many versions of DEC's X server (DECwindows) have bugs that
  681. require setting useXPutImage or useXSetTile to false.
  682.  
  683.     Some servers do not implement backing pixmaps properly, or do not
  684.     have enough memory for them.  If you get strange behavior or "out
  685.     of memory" messages, try setting useBackingPixmap to false.
  686.  
  687.     Some servers do not implement tiling properly.  This will show up
  688.     as broad bands of color where dither patterns should appear.  If
  689.     this happens, try setting useXSetTile to false.
  690.  
  691.     Some servers do not implement bitmap/pixmap displaying properly.
  692.     This may show up as white or black rectangles where characters
  693.     should appear, or characters may appear in "inverse video" (e.g.,
  694.     white on a black rectangle).  If this happens, try setting
  695.     useXPutImage to false.
  696.  
  697. To use native X11 fonts, Ghostscript must map PostScript font names to
  698. the XLFD font names.  The regularFonts, symbolFonts, and dingbatFonts
  699. resources give the name mapping for different encodings.  The XLFD font 
  700. name in the mapping must contain seven dashes.  The X driver adds the
  701. additional size and encoding fields to bring the total number of dashes
  702. in the font name to 14.  Here are the default font mappings:
  703.  
  704.   Regular Fonts: (Fonts available in standard or ISO-Latin-1 encoding)
  705.  
  706.     AvantGarde-Book:-Adobe-ITC Avant Garde Gothic-Book-R-Normal--\n\
  707.     AvantGarde-BookOblique:-Adobe-ITC Avant Garde Gothic-Book-O-Normal--\n\
  708.     AvantGarde-Demi:-Adobe-ITC Avant Garde Gothic-Demi-R-Normal--\n\
  709.     AvantGarde-DemiOblique:-Adobe-ITC Avant Garde Gothic-Demi-O-Normal--\n\
  710.     Bookman-Demi:-Adobe-ITC Bookman-Demi-R-Normal--\n\
  711.     Bookman-DemiItalic:-Adobe-ITC Bookman-Demi-I-Normal--\n\
  712.     Bookman-Light:-Adobe-ITC Bookman-Light-R-Normal--\n\
  713.     Bookman-LightItalic:-Adobe-ITC Bookman-Light-I-Normal--\n\
  714.     Courier:-Adobe-Courier-Medium-R-Normal--\n\
  715.     Courier-Bold:-Adobe-Courier-Bold-R-Normal--\n\
  716.     Courier-BoldOblique:-Adobe-Courier-Bold-O-Normal--\n\
  717.     Courier-Oblique:-Adobe-Courier-Medium-O-Normal--\n\
  718.     Helvetica:-Adobe-Helvetica-Medium-R-Normal--\n\
  719.     Helvetica-Bold:-Adobe-Helvetica-Bold-R-Normal--\n\
  720.     Helvetica-BoldOblique:-Adobe-Helvetica-Bold-O-Normal--\n\
  721.     Helvetica-Narrow:-Adobe-Helvetica-Medium-R-Narrow--\n\
  722.     Helvetica-Narrow-Bold:-Adobe-Helvetica-Bold-R-Narrow--\n\
  723.     Helvetica-Narrow-BoldOblique:-Adobe-Helvetica-Bold-O-Narrow--\n\
  724.     Helvetica-Narrow-Oblique:-Adobe-Helvetica-Medium-O-Narrow--\n\
  725.     Helvetica-Oblique:-Adobe-Helvetica-Medium-O-Normal--\n\
  726.     NewCenturySchlbk-Bold:-Adobe-New Century Schoolbook-Bold-R-Normal--\n\
  727.     NewCenturySchlbk-BoldItalic:-Adobe-New Century Schoolbook-Bold-I-Normal--\n\
  728.     NewCenturySchlbk-Italic:-Adobe-New Century Schoolbook-Medium-I-Normal--\n\
  729.     NewCenturySchlbk-Roman:-Adobe-New Century Schoolbook-Medium-R-Normal--\n\
  730.     Palatino-Bold:-Adobe-Palatino-Bold-R-Normal--\n\
  731.     Palatino-BoldItalic:-Adobe-Palatino-Bold-I-Normal--\n\
  732.     Palatino-Italic:-Adobe-Palatino-Medium-I-Normal--\n\
  733.     Palatino-Roman:-Adobe-Palatino-Medium-R-Normal--\n\
  734.     Times-Bold:-Adobe-Times-Bold-R-Normal--\n\
  735.     Times-BoldItalic:-Adobe-Times-Bold-I-Normal--\n\
  736.     Times-Italic:-Adobe-Times-Medium-I-Normal--\n\
  737.     Times-Roman:-Adobe-Times-Medium-R-Normal--\n\
  738.     ZapfChancery-MediumItalic:-Adobe-ITC Zapf Chancery-Medium-I-Normal--
  739.  
  740.   Symbol Fonts:  (using Symbol encoding)
  741.  
  742.     Symbol: -Adobe-Symbol-Medium-R-Normal--
  743.  
  744.   Dingbat Fonts: (using Dingbat encoding)
  745.  
  746.     ZapfDingbats: -Adobe-ITC Zapf Dingbats-Medium-R-Normal--
  747.  
  748. For X11/NeWS, one can use the OpenWindows scalable fonts instead, which
  749. will give good quality output for any point size.  In this environment,
  750. the relevant section of the resource file should look like this:
  751.  
  752. Ghostscript.regularFonts: \
  753.     AvantGarde-Book:        -itc-avantgarde-book-r-normal-- \n\
  754.     AvantGarde-BookOblique:        -itc-avantgarde-book-o-normal-- \n\
  755.     AvantGarde-Demi:        -itc-avantgarde-demi-r-normal-- \n\
  756.     AvantGarde-DemiOblique:        -itc-avantgarde-demi-o-normal-- \n\
  757.     Bembo:                -monotype-bembo-medium-r-normal-- \n\
  758.     Bembo-Bold:            -monotype-bembo-bold-r-normal-- \n\
  759.     Bembo-BoldItalic:        -monotype-bembo-bold-i-normal-- \n\
  760.     Bembo-Italic:            -monotype-bembo-medium-i-normal-- \n\
  761.     Bookman-Demi:            -itc-bookman-demi-r-normal-- \n\
  762.     Bookman-DemiItalic:        -itc-bookman-demi-i-normal-- \n\
  763.     Bookman-Light:            -itc-bookman-light-r-normal-- \n\
  764.     Bookman-LightItalic:        -itc-bookman-light-i-normal-- \n\
  765.     Courier:            -itc-courier-medium-r-normal-- \n\
  766.     Courier-Bold:            -itc-courier-bold-r-normal-- \n\
  767.     Courier-BoldOblique:        -itc-courier-bold-o-normal-- \n\
  768.     Courier-Oblique:        -itc-courier-medium-o-normal-- \n\
  769.     GillSans:            -monotype-gill-medium-r-normal-sans- \n\
  770.     GillSans-Bold:            -monotype-gill-bold-r-normal-sans- \n\
  771.     GillSans-BoldItalic:        -monotype-gill-bold-i-normal-sans- \n\
  772.     GillSans-Italic:        -monotype-gill-normal-i-normal-sans- \n\
  773.     Helvetica:            -linotype-helvetica-medium-r-normal-- \n\
  774.     Helvetica-Bold:            -linotype-helvetica-bold-r-normal-- \n\
  775.     Helvetica-BoldOblique:        -linotype-helvetica-bold-o-normal-- \n\
  776.     Helvetica-Narrow:        -linotype-helvetica-medium-r-narrow-- \n\
  777.     Helvetica-Narrow-Bold:        -linotype-helvetica-bold-r-narrow-- \n\
  778.     Helvetica-Narrow-BoldOblique:    -linotype-helvetica-bold-o-narrow-- \n\
  779.     Helvetica-Narrow-Oblique:    -linotype-helvetica-medium-o-narrow-- \n\
  780.     Helvetica-Oblique:        -linotype-helvetica-medium-o-normal-- \n\
  781.     LucidaBright:            -b&h-lucidabright-medium-r-normal-- \n\
  782.     LucidaBright-Demi:        -b&h-lucidabright-demibold-r-normal-- \n\
  783.     LucidaBright-DemiItalic:    -b&h-lucidabright-demibold-i-normal-- \n\
  784.     LucidaBright-Italic:        -b&h-lucidabright-medium-i-normal-- \n\
  785.     LucidaSans:            -b&h-lucida-medium-r-normal-sans- \n\
  786.     LucidaSans-Bold:        -b&h-lucida-bold-r-normal-sans- \n\
  787.     LucidaSans-BoldItalic:        -b&h-lucida-bold-i-normal-sans- \n\
  788.     LucidaSans-Italic:        -b&h-lucida-medium-i-normal-sans- \n\
  789.     LucidaSans-Typewriter:        -b&h-lucidatypewriter-medium-r-normal-sans- \n\
  790.     LucidaSans-TypewriterBold:    -b&h-lucidatypewriter-bold-r-normal-sans- \n\
  791.     NewCenturySchlbk-BoldItalic:    -linotype-new century schoolbook-bold-i-normal-- \n\
  792.     NewCenturySchlbk-Bold:        -linotype-new century schoolbook-bold-r-normal-- \n\
  793.     NewCenturySchlbk-Italic:    -linotype-new century schoolbook-medium-i-normal-- \n\
  794.     NewCenturySchlbk-Roman:        -linotype-new century schoolbook-medium-r-normal-- \n\
  795.     Palatino-Bold:            -linotype-palatino-bold-r-normal-- \n\
  796.     Palatino-BoldItalic:        -linotype-palatino-bold-i-normal-- \n\
  797.     Palatino-Italic:        -linotype-palatino-medium-i-normal-- \n\
  798.     Palatino-Roman:            -linotype-palatino-medium-r-normal-- \n\
  799.     Rockwell:            -monotype-rockwell-medium-r-normal-- \n\
  800.     Rockwell-Bold:            -monotype-rockwell-bold-r-normal-- \n\
  801.     Rockwell-BoldItalic:        -monotype-rockwell-bold-i-normal-- \n\
  802.     Rockwell-Italic:        -monotype-rockwell-medium-i-normal-- \n\
  803.     Times-Bold:            -linotype-times-bold-r-normal-- \n\
  804.     Times-BoldItalic:        -linotype-times-bold-i-normal-- \n\
  805.     Times-Italic:            -linotype-times-medium-i-normal-- \n\
  806.     Times-Roman:            -linotype-times-medium-r-normal-- \n\
  807.     Utopia-Bold:            -adobe-utopia-bold-r-normal-- \n\
  808.     Utopia-BoldItalic:        -adobe-utopia-bold-i-normal-- \n\
  809.     Utopia-Italic:            -adobe-utopia-regular-i-normal-- \n\
  810.     Utopia-Regular:            -adobe-utopia-regular-r-normal-- \n\
  811.     ZapfChancery-MediumItalic:    -itc-zapfchancery-medium-i-normal-- \n
  812. Ghostscript.dingbatFonts: \
  813.     ZapfDingbats:            -itc-zapfdingbats-medium-r-normal--
  814. Ghostscript.symbolFonts: \
  815.     Symbol:                --symbol-medium-r-normal--
  816.  
  817. Users who switch regularly between different X servers may wish to use the
  818. '*' wild card in place of the foundry name (itc, monotype, linotype, b&h,
  819. or adobe); users who do not switch X servers should leave the explicit
  820. foundry in the name, since it speeds up font accessing.
  821.  
  822. To set these resources, put them in a file (such as ~/.Xdefaults) in the
  823. following form:
  824.  
  825. Ghostscript*geometry:    -0+0
  826. Ghostscript*xResolution: 72
  827. Ghostscript*yResolution: 72
  828.  
  829. Then load the defaults into the X server:
  830.  
  831. % xrdb -merge ~/.Xdefaults
  832.  
  833. Ghostscript will take advantage of the "HP XLFD Enhancements," if
  834. available, to use native X11 fonts for fonts that are anamorphically
  835. scaled, rotated, or mirrored.  If the user has installed these changes to
  836. their X or font server, they will automatically be used when appropriate.
  837.  
  838. SCO Unix
  839. --------
  840.  
  841. Because of bugs in the SCO Unix kernel, Ghostscript will not work if you
  842. select direct screen output (gdevsco.c) and also allow it to write messages
  843. on the console.  If you are using direct screen output, redirect
  844. Ghostscript's terminal output to a file.
  845.  
  846. ********
  847. ******** Switches
  848. ********
  849.  
  850. Unless otherwise noted, these apply to all platforms.
  851.  
  852. Normal switches
  853. ---------------
  854.  
  855.     Input control
  856.     -------------
  857.  
  858.     @filename
  859.         Causes Ghostscript to read filename and treat its
  860.         contents the same as the command line.  (This is
  861.         intended primarily for getting around MS-DOS's
  862.         128-character limit on the length of a command line.)
  863.         Switches or file names in the file may be separated by
  864.         any amount of white space (space, tab, line break);
  865.         there is no limit on the size of the file.
  866.  
  867.     -- filename arg1 ...
  868.     -+ filename arg1 ...
  869.         Takes the next argument as a file name as usual, but takes
  870.         all remaining arguments (even if they have the syntactic
  871.         form of switches) and defines the name ARGUMENTS in
  872.         userdict (not systemdict) as an array of those strings,
  873.         *before* running the file.  When Ghostscript finishes
  874.         executing the file, it exits back to the shell.
  875.  
  876.     -@ filename arg1 ...
  877.         Does the same thing as -- and -+, but expands @filename
  878.         arguments.
  879.  
  880.     -
  881.         This is not really a switch.  It indicates to Ghostscript
  882.         that the standard input is coming from a file or a pipe.
  883.         Ghostscript reads from stdin until reaching end-of-file,
  884.         executing it like any other file, and then continues
  885.         processing the command line.  At the end of the command
  886.         line, Ghostscript exits rather than going into its
  887.         interactive mode.  NOTE: this switch works only for
  888.         PostScript, not for PDF.
  889.  
  890.     -c tokens ...
  891.         Interprets arguments, up to the next argument that begins
  892.         with - followed by a non-digit or with @, as PostScript
  893.         code.  For example, if the file quit.ps contains just
  894.         the word `quit', the following are equivalent:
  895.             quit.ps
  896.         and
  897.             -c quit
  898.         Each argument must be exactly one token, as defined by
  899.         the `token' operator.
  900.  
  901.     -ffilename
  902.         Execute the given file, even if its name begins with a -
  903.         or an @.  -f alone does nothing, but it provides a
  904.         convenient way to terminate the list of tokens for the -c
  905.         switch.
  906.  
  907.     File searching
  908.     --------------
  909.  
  910.     Note that by "library files" we mean all the files identified as
  911.     using the search rule under "File searching" above: Ghostscript's
  912.     own initialization files, fonts, and files named on the command
  913.     line.
  914.  
  915.     -Idirectories
  916.         Adds the designated list of directories at the head of the
  917.         search path for library files.
  918.  
  919.     -P
  920.         Makes Ghostscript look first in the current directory for
  921.         library files.  This is currently the default.
  922.     -P-
  923.         Makes Ghostscript *not* look first in the current directory
  924.         for library files (unless, of course, the first explicitly
  925.         supplied directory is `.').
  926.  
  927.     Parameter setting
  928.     -----------------
  929.  
  930.     -Dname=token
  931.     -dname=token
  932.         Define a name in systemdict with the given definition.
  933.         The token must be exactly one token (as defined by the
  934.         'token' operator) and must not contain any whitespace.
  935.         If the token is a non-literal name, it must be true,
  936.         false, or null.
  937.  
  938.     -Dname
  939.     -dname
  940.         Define a name in systemdict with value=true.
  941.  
  942.     -Sname=string
  943.     -sname=string
  944.         Define a name in systemdict with a given string as value.
  945.         This is different from -d.  For example,
  946.             -dname=35
  947.         is equivalent to the program fragment
  948.             /name 35 def
  949.         whereas
  950.             -sname=35
  951.         is equivalent to
  952.             /name (35) def
  953.  
  954.     -uname
  955.         Un-define a name, cancelling -d or -s.
  956.  
  957.     -gnumber1xnumber2
  958.         Equivalent to -dDEVICEWIDTH=number1 and
  959.         -dDEVICEHEIGHT=number2, specifying the device width and
  960.         height in pixels.  This is for the benefit of devices (such
  961.         as X11 windows and VESA displays) that require (or allow)
  962.         width and height to be specified.  Note that this causes
  963.         documents of other sizes to be clipped, not scaled:
  964.         see -dFIXEDMEDIA below.
  965.  
  966.     -rnumber
  967.     -rnumber1xnumber2
  968.         Equivalent to -dDEVICEXRESOLUTION=number1 and
  969.         -dDEVICEYRESOLUTION=number2, specifying the device
  970.         horizontal and vertical resolution in pixels per inch.  This
  971.         is for the benefit of devices (such as printers) that
  972.         support multiple X and Y resolutions.
  973.  
  974.     Miscellaneous
  975.     -------------
  976.  
  977.     -q
  978.         Quiet startup -- suppress normal startup messages,
  979.         and also do the equivalent of -dQUIET.
  980.  
  981. Note that gs_init.ps makes systemdict read-only, so the values of names
  982. defined with -D/d/S/s cannot be changed (although, of course, they can be
  983. superseded by definitions in userdict or other dictionaries.)
  984.  
  985. Special names
  986. -------------
  987.  
  988. -dBATCH
  989.     causes Ghostscript to exit after processing all files named on the
  990. command line, rather than going into an interactive loop reading PostScript
  991. commands.  Equivalent to putting -c quit at the end of the command line.
  992.  
  993. -dCOLORSCREEN
  994. -dCOLORSCREEN=0
  995. -dCOLORSCREEN=false
  996.     On high-resolution devices (at least 150 dpi resolution, or
  997. -dDITHERPPI specified), -dCOLORSCREEN forces the use of separate halftone
  998. screens with different angles for C/M/Y/K or R/G/B if halftones are needed
  999. (this produces the best-quality output); -dCOLORSCREEN=0 uses separate
  1000. screens with the same frequency and angle; -dCOLORSCREEN=false forces the
  1001. use of a single binary screen.  If COLORSCREEN is not specified, the default
  1002. is to use separate screens with different angles if the device has fewer
  1003. than 5 bits per color, and a single binary screen (which will never actually
  1004. be used under normal circumstances) on all other devices.
  1005.  
  1006. -dDELAYBIND
  1007.     causes 'bind' to remember all its invocations, but not actually
  1008. execute them until the .bindnow procedure is called.  Useful only for
  1009. certain specialized packages like pstotext that redefine operators.
  1010.  
  1011. -dDISKFONTS
  1012.     causes individual character outlines to be loaded from the disk the
  1013. first time they are encountered.  (Normally Ghostscript loads all the
  1014. character outlines when it loads a font.)  This may allow loading more
  1015. fonts into RAM, at the expense of slower rendering.  DISKFONTS is only
  1016. effective if the diskfont feature was selected in the executable; otherwise
  1017. it is ignored.
  1018.  
  1019. -dDITHERPPI=lpi
  1020.     forces all devices to be considered high-resolution, and forces use
  1021. of a halftone screen or screens with lpi lines per inch, disregarding the
  1022. actual device resolution.  Reasonable values for lpi are N/5 to N/20, where
  1023. N is the resolution in dots per inch.
  1024.  
  1025. -dFIXEDMEDIA
  1026.     causes the media size to be fixed after initialization, and causes
  1027. pages of other sizes or orientations to be clipped.  This may be useful when
  1028. printing documents on a printer that can handle their requested paper size
  1029. but whose default is some other size.  Note that -g automatically sets
  1030. -dFIXEDMEDIA, but -sPAPERSIZE= does not.
  1031.  
  1032. -dFIXEDRESOLUTION
  1033.     causes the media resolution to be fixed similarly.  -r automatically
  1034. sets -dFIXEDRESOLUTION.
  1035.  
  1036. -dLOCALFONTS
  1037.     causes Type 1 fonts to be loaded into the current VM, which is
  1038. normally local VM, instead of always being loaded into global VM.  Only
  1039. useful for compatibility with Adobe printers for loading some obsolete
  1040. fonts.
  1041.  
  1042. -dNOBIND
  1043.     disables the 'bind' operator.  Only useful for debugging.
  1044.  
  1045. -dNOCACHE
  1046.     disables character caching.  Only useful for debugging.
  1047.  
  1048. -dNOCIE
  1049.     substitutes DeviceGray and DeviceRGB for CIEBasedA and CIEBasedABC
  1050. color spaces respectively.  Only useful on very slow systems where color
  1051. accuracy is less important.
  1052.  
  1053. -dNODISPLAY
  1054.     initializes Ghostscript with a null device (a device that discards
  1055. the output image) rather than the default device or the device selected with
  1056. -sDEVICE=.  This is usually only useful when running PostScript code whose
  1057. purpose is to compute something rather than produce an output image.
  1058.  
  1059. -dNOFONTMAP
  1060.     suppresses the normal loading of the Fontmap file.  This may be
  1061. useful in environments without a file system.
  1062.  
  1063. -dNOFONTPATH
  1064.     suppresses consultation of GS_FONTPATH.  This may be useful for
  1065. debugging.
  1066.  
  1067. -dNOGC
  1068.     suppresses the initial automatic enabling of the garbage collector
  1069. in Level 2 systems.  (The vmreclaim operator is not disabled.)  Only useful
  1070. for debugging.
  1071.  
  1072. -dNOPAUSE
  1073.     disables the prompt and pause at the end of each page.  Normally one
  1074. should use this (along with -dBATCH) when producing output on a printer or
  1075. to a file; it also may be desirable for applications where another program
  1076. is 'driving' Ghostscript.
  1077.  
  1078. -dNOPLATFONTS
  1079.     disables the use of fonts supplied by the underlying platform
  1080. (X Windows or Microsoft Windows).  This may be needed if the platform
  1081. fonts look undesirably different from the scalable fonts.
  1082.  
  1083. -dNOPROMPT
  1084.     disables only the prompt, but not the pause, at the end of each
  1085. page.  This may be useful on PC displays that get confused if a program
  1086. attempts to write text to the console while the display is in a graphics
  1087. mode.
  1088.  
  1089. -dORIENT1=true
  1090. -dORIENT1=false
  1091.     defines the meaning of the 0 and 1 orientation values for the
  1092. setpage[params] compatibility operators.  The default value of ORIENT1 is
  1093. true (set in gs_init.ps), which is the correct value for most files that use
  1094. setpage[params] at all, namely, files produced by badly designed
  1095. applications that 'know' that the output will be printed on certain
  1096. roll-media printers: these applications use 0 to mean landscape and 1 to
  1097. mean portrait.  -dORIENT1=false declares that 0 means portrait and 1 means
  1098. landscape, which is the convention used by a smaller number of files
  1099. produced by properly written applications.
  1100.  
  1101. -dQUIET
  1102.     suppresses routine information comments on stdout.  This is
  1103. currently necessary when redirecting device output to stdout.
  1104.  
  1105. -dSAFER
  1106.     disables the deletefile and renamefile operators, and the
  1107. ability to open files in any mode other than read-only.  This may be
  1108. desirable for spoolers or other sensitive environments.
  1109.  
  1110. -dSHORTERRORS
  1111.     makes certain error and information messages more Adobe-compatible.
  1112.  
  1113. -dWRITESYSTEMDICT
  1114.     leaves systemdict writable.  This is necessary when running
  1115. special utility programs such as font2c and pcharstr, which must bypass
  1116. normal PostScript access protection.
  1117.  
  1118. -sDEVICE=device
  1119.     selects an alternate initial output device, as described above.
  1120.  
  1121. -sFONTMAP=filename1;filename2;...
  1122.     specifies (an) alternate name(s) for the Fontmap file.  Note that
  1123. the names are separated by : on Unix systems, by ; on MS-DOS or MS Windows
  1124. systems, and by , on VMS systems, just as for search paths.
  1125.  
  1126. -sFONTPATH=dir1;dir2;...
  1127.     specifies a list of directories that will be scanned when looking
  1128. for fonts not found on the search path, overriding the GS_FONTPATH
  1129. environment variable.
  1130.  
  1131. -sOutputFile=filename
  1132.     selects an alternate output file (or pipe) for the initial output
  1133. device, as described above.
  1134.  
  1135. -sSUBSTFONT=fontname
  1136.     causes the given font to be substituted for all unknown fonts,
  1137. instead of using the normal intelligent substitution algorithm.  Also, in
  1138. this case, the font returned by findfont will be the actual font named
  1139. fontname, not a copy of the font with the FontName changed to the requested
  1140. one.
  1141.  
  1142. Debugging switches
  1143. ------------------
  1144.  
  1145. The -Z switch only applies if the interpreter was built for a
  1146. debugging configuration (DEBUG=1 or -DDEBUG selected at compile
  1147. time).
  1148.  
  1149.     -A    Fill empty storage with a distinctive bit pattern
  1150.         for debugging.  Equivalent to -Z@.
  1151.     -A-    Turn off -A, equivalent to -Z-@.
  1152.  
  1153.     -E    Turn on tracing of error returns from operators.
  1154.         Equivalent to -Z#.
  1155.     -E-    Turn off -E, equivalent to -Z-#.
  1156.  
  1157.     -Mn    Force the interpreter's allocator to acquire additional
  1158.         memory in units of nK, rather than the default (currently
  1159.         20K on MS-DOS systems, 50K on Unix).  n is a positive
  1160.         decimal integer (not exceeding 63 on MS-DOS systems).
  1161.  
  1162.     -Nn    Allocate space for nK names, rather than the default
  1163.         (normally 64K).  n > 64 is only allowed if the interpreter
  1164.         was compiled with EXTEND_NAMES defined.
  1165.  
  1166.     -Zxxx    Turn on debugging printout.
  1167.     -Z-xxx    Turn off debugging printout.
  1168.         Each of the xxx characters selects an option.
  1169.         Case is significant.
  1170.             0 = garbage collector, minimal detail
  1171.             1 = type 1 & type 42 font interpreter
  1172.             2 = curve subdivider/rasterizer
  1173.               3 = curve subdivider/rasterizer, detail
  1174.             4 = garbage collector (strings)
  1175.               5 = garbage collector (strings, detail)
  1176.             6 = garbage collector (chunks, roots)
  1177.               7 = garbage collector (objects)
  1178.               8 = garbage collector (refs)
  1179.               9 = garbage collector (pointers)
  1180.             a = allocator (large blocks only)
  1181.               A = allocator (all calls)
  1182.             b = bitmap image processor
  1183.               B = bitmap images, detail
  1184.             c = color/halftone mapper
  1185.             d = dictionary put/undef
  1186.               D = dictionary lookups
  1187.             e = external (OS-related) calls
  1188.             f = fill algorithm (summary)
  1189.               F = fill algorithm (detail)
  1190.             g = gsave/grestore[all]
  1191.             h = halftone renderer
  1192.               H = halftones, every pixel
  1193.             i = interpreter, just names
  1194.               I = interpreter, everything
  1195.             j = (Japanese) composite fonts
  1196.             k = character cache & xfonts
  1197.               K = character cache, every access
  1198.             l = command lists, bands
  1199.               L = command lists, everything
  1200.             m = makefont and font cache
  1201.             n = name lookup (new names only)
  1202.             o = outliner (stroke)
  1203.               O = stroke detail
  1204.             p = band list paths
  1205.               P = all paths
  1206.             q = clipping
  1207.             r = arc renderer
  1208.             s = streams
  1209.               S = scanner
  1210.             t = tiling algorithm
  1211.             u = undo saver (for save/restore), finalization
  1212.               U = undo saver, more detail
  1213.             v = rectangle fill
  1214.               V = device-level output
  1215.             w = compression encoder/decoder
  1216.             x = transformations
  1217.             y = Type 1 hints
  1218.               Y = Type 1 hints, every access
  1219.             z = trapezoid fill
  1220.             # = operator error returns
  1221.             % = externally processed comments
  1222.             * = image parameters
  1223.             : = command list & allocator/time summary
  1224.             ~ = math functions
  1225.         The following switches select debugging options other than
  1226.         printout.
  1227.             $ = set unused parts of object references to
  1228.                 identifiable garbage values
  1229.             + = use minimum-size stack blocks
  1230.             , = don't use path-based banding
  1231.             . = use small-memory table sizes even on
  1232.                 large-memory machines
  1233.             ? = validate pointers before, during and after GC,
  1234.                 also before and after save and restore;
  1235.                 also make other allocator validity checks
  1236.             @ = fill newly allocated, garbage-collected, and
  1237.                 freed storage with a marker (a1, c1, and
  1238.                 f1 respectively)
  1239.  
  1240. ********
  1241. ******** Frequently Asked Questions
  1242. ********
  1243.  
  1244. Please consult our FAQ on the World-Wide Web at
  1245.     http://www.cs.wisc.edu/~ghost/gsfaq.html
  1246. or the text version at
  1247.     http://www.cs.wisc.edu/~ghost/gsfaq.txt
  1248.